home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / nice / nohup.sh < prev   
Encoding:
Text File  |  1991-03-18  |  185 b   |  10 lines

  1. #!/sprite/cmds/sh
  2. #
  3. trap "" 1 15
  4. if test -t 2>&1  ; then
  5.     echo "Sending output to 'nohup.out'"
  6.     exec /sprite/cmds/nice -5 $* >>nohup.out 2>&1
  7. else
  8.     exec /sprite/cmds/nice -5 $* 2>&1
  9. fi
  10.